'Declaration
Public Overloads Sub WriteRange(Of T As {New, Struct})( _
ByVal data() As T _
)
public void WriteRange<T>(
T[] data
)
where T: new(), struct
Parameters
data
An array of values to be written to the current stream.
Type Parameters
T
Exceptions
Exception
Description
System.NotSupportedException
This stream does not support writing.
Remarks
In order to provide faster read/write, this operation doesn't check stream bound. A client must carefully not read/write above the size of this datastream.